home *** CD-ROM | disk | FTP | other *** search
/ Electronics Boutique Catalog 1996 Spring / 1996 Electronics Boutique Spring CD-ROM (USA).bin / eb / 1400.dir / 00016.ls < prev    next >
Encoding:
Text File  |  1996-03-20  |  491 b   |  29 lines

  1. on startMovie
  2.   set the mouseDownScript to "donescript"
  3.   set the timeoutLength to 3 * 60
  4.   set the timeoutScript to EMPTY
  5.   flagsetter()
  6.   preLoadCast(1, 10)
  7.   set the volume of sound 1 to 150
  8. end
  9.  
  10. on stopMovie
  11.   flagsetter()
  12. end
  13.  
  14. on donescript
  15.   global soundVar
  16.   soundstopper()
  17.   go("doneframe")
  18.   set the timeoutScript to EMPTY
  19.   set soundVar to random(7)
  20.   set soundVar to "done" & soundVar
  21.   puppetSound(soundVar)
  22.   updateStage()
  23. end
  24.  
  25. on soundstopper
  26.   sound stop 1
  27.   sound stop 2
  28. end
  29.